home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / README.1ST < prev   
Encoding:
Text File  |  1996-02-21  |  3.7 KB  |  116 lines

  1. This is the README.1ST file for DJGPP Version 2.00
  2.  
  3. Status and other information (online docs, FAQ, mail archives) are
  4. made available through the djgpp web pages at http://www.delorie.com/.
  5. Discussion is through the djgpp news group (comp.os.msdos.djgpp) and
  6. djgpp mailing list (subscribe through listserv@delorie.com).  Look on
  7. the web page for information on the latest versions.
  8.  
  9. Version information is in manifest/*.ver within each zip.  Contents
  10. are in manifest/*.mft in each zip.
  11.  
  12.  
  13. THE DISTRIBUTION
  14. ----------------
  15.  
  16. The 'b' zips include online documentation.  At the time of writing
  17. this file, the various packages are:
  18.  
  19. v2/
  20. djdev200 DJGPP V2 Development Kit and Runtime
  21. djlsr200 DJGPP V2 Base Library Sources
  22. djtst200 DJGPP V2 Test Programs
  23. djcrx200 DJGPP V2 For Building a Cross-to-DOS Compiler
  24.  
  25. v2gnu/
  26. bnu252b  GNU binutils 2.5.2 for DJGPP V2
  27. bnu252s  GNU binutils 2.5.2 sources
  28. bsn124b  GNU bison 1.24 for DJGPP V2
  29. bsn124s  GNU bison 1.24 sources
  30. dif271b  GNU diff 2.7.1 for DJGPP V2
  31. dif271s  GNU diff 2.7.1 sources
  32. find41b  GNU findutils 4.1 for DJGPP V2
  33. find41s  GNU findutils 4.1 sources
  34. flx252b  GNU Flex 2.5.2 for DJGPP V2
  35. flx252s  GNU Flex 2.5.2 sources
  36. gcc272b  GNU GCC 2.7.2 for DJGPP V2
  37. gcc272s  GNU GCC 2.7.2 sources
  38. gdb412b  GNU Debugger 4.12 for DJGPP V2
  39. gdb412s  GNU Debugger 4.12 sources
  40. gpp272b  GNU G++ 2.7.2 for DJGPP V2 (no libs)
  41. grep20b  GNU grep 2.0 for DJGPP V2
  42. grep20s  GNU grep 2.0 sources
  43. gzp124b  GNU gzip 1.2.4 for DJGPP V2
  44. gzp124s  GNU gzip 1.2.4 sources
  45. lgp271b  GNU libg++ 2.7.1 for DJGPP V2
  46. lgp271s  GNU libg++ 2.7.1 sources
  47. mak373b  GNU Make 3.73 for DJGPP V2
  48. mak373s  GNU Make 3.73 sources
  49. obc272b  GNU ObjC 2.7.2 for DJGPP V2
  50. pat21b   GNU patch 2.1 for DJGPP V2
  51. pat21s   GNU patch 2.1 sources
  52. sed118b  GNU sed 1.18 for DJGPP V2
  53. sed118s  GNU sed 1.18 sources
  54. txi360b  GNU texinfo 3.6 for DJGPP V2
  55. txi360s  GNU texinfo 3.6 sources
  56.  
  57. v2tk/
  58. bcc2grx  Borland GUI to GRX interface for DJGPP V2
  59. grx20    GRX 2.0 Graphics Library for DJGPP V2
  60.  
  61. v2misc/
  62. wmemu2b  WM's 387 emulator binaries for DJGPP V2
  63. wmemu2s  WM's 387 emulator sources for DJGPP V2
  64.  
  65.  
  66. GETTING STARTED
  67. ---------------
  68.  
  69. To build C programs, you'll need djdev200.zip, gcc272b.zip, and
  70. bnu252b.zip.  For C++, add gpp272b.zip and lgp271b.zip.  To read the
  71. online manuals, add txi360b.zip and run "info".
  72.  
  73. After unzipping the zip files in, say, C:\DJGPP, set the DJGPP
  74. environment variable to point the to C:\DJGPP\DJGPP.ENV and add
  75. C:\DJGPP\BIN to your PATH, like this (in autoexec.bat):
  76.  
  77.     set DJGPP=C:\DJGPP\DJGPP.ENV
  78.     set PATH=%PATH%;C:\DJGPP\BIN
  79.  
  80. To compile a C program, use a command like this:
  81.  
  82.     gcc myfile.c -o myfile.exe -lm
  83.  
  84. The -lm links in the lib/libm.a library (trig math) if needeed.  Link
  85. order is significant.  C++ libraries are -lgpp, -lstdcxx, or
  86. -liostream from lgp271b.zip.
  87.  
  88.  
  89. Existing binaries from V1 can be used for other applications.  V1
  90. programs cannot run V2 programs, but v2 programs can run v1 programs.
  91.  
  92. You must also provide a DPMI environment.  Look for CWSDPMI
  93. (csdpmi*.zip) at the beta or SimTel sites if you don't have DPMI
  94. already (it's in os2, nt, win3.1, qdpmi, 386max, etc).
  95.  
  96. --- COPYRIGHT ---
  97.  
  98. DJGPP V2 is Copyright (C) 1995 by DJ Delorie.  Some parts of libc.a
  99. are Copyright (C) Regents of the University of California at Berkeley.
  100.  
  101. GNU software (gcc, make, libg++, etc) is Copyright by the Free
  102. Software Foundation.
  103.  
  104. DJGPP V2's copyright allows it to be used to produce commercial
  105. applications.  However, if you include code or libraries that are not
  106. part of djgpp (like gnu's libg++) then you must comply with their
  107. copyrights.
  108.  
  109.  
  110. Enjoy!
  111.  
  112.  
  113. DJ Delorie
  114. dj@delorie.com
  115. http://www.delorie.com/
  116.